home *** CD-ROM | disk | FTP | other *** search
/ Openstep 4.2 (Developer) / Openstep Developer 4.2.iso / NextDeveloper / Examples / NEXTIME / SimplePlayer / Controller.h next >
Encoding:
Text File  |  1996-01-16  |  507 b   |  25 lines

  1.  
  2.  
  3. #import <AppKit/AppKit.h>
  4. #import <NEXTIME/NTMovieScreenCell.h>
  5.  
  6. @interface Controller: NSObject
  7. {
  8.     id            infoPanel;
  9.     id            inspectorPanel;
  10.         id            preferencesPanel;
  11.         id            videoResizeMatrix;
  12. }
  13.  
  14. - init;
  15. - (void)dealloc;
  16. - (void)showInfoPanel:sender;
  17. - (void)showInspectorPanel:sender;
  18. - (void)showPreferencesPanel:sender;
  19. - (void)openDocument:sender;
  20. - ( void)setDocumentSizingPolicy:sender;
  21.  
  22. + (NTMovieScreenCellSizing)sizingPolicy;
  23. + (void)setSizingPolicy:(NTMovieScreenCellSizing)policy;
  24. @end
  25.